home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-01-01 | 1.1 KB | 58 lines | [TEXT/MPS ] |
- //# Copyright: © 1993 - 1995 by Apple Computer, Inc., all rights reserved.
-
- #ifndef _SHAPE_
- #define _SHAPE_
-
- #ifndef _SHAPEB_
- #include "ShapeB.idl"
- #endif
-
- //==============================================================================
- // Classes defined in this interface
- //==============================================================================
-
- interface ODShape;
-
- //==============================================================================
- // ODShape
- //==============================================================================
-
- #ifdef _PLATFORM_MACINTOSH_
-
- interface ODShape : ODBaseShape
- {
- void InitShape();
-
- ODRgnHandle GetQDRegion();
-
- void SetQDRegion(in ODRgnHandle rgn );
-
- ODgxShape GetGXShape( );
-
- void SetGXShape(in ODgxShape s);
-
- ODRgnHandle CopyQDRegion();
-
-
- #ifdef __SOMIDL__
- implementation
- {
- releaseorder:
- InitShape,
- GetQDRegion,
- SetQDRegion,
- GetGXShape,
- SetGXShape,
- CopyQDRegion;
-
- majorversion = 1; minorversion = 0;
-
- functionprefix = ODShape__;
- };
- #endif
- };
-
- #endif //# _PLATFORM_MACINTOSH_
-
- #endif //# _SHAPE_
-